home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 03 Pathfinding with Astar / 01 Matthews / ase / ase.rc < prev    next >
Encoding:
Text File  |  2001-09-01  |  17.0 KB  |  500 lines

  1. //Microsoft Developer Studio generated resource script.
  2. //
  3. #include "resource.h"
  4.  
  5. #define APSTUDIO_READONLY_SYMBOLS
  6. /////////////////////////////////////////////////////////////////////////////
  7. //
  8. // Generated from the TEXTINCLUDE 2 resource.
  9. //
  10. #include "afxres.h"
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. #undef APSTUDIO_READONLY_SYMBOLS
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // English (U.S.) resources
  17.  
  18. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  19. #ifdef _WIN32
  20. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  21. #pragma code_page(1252)
  22. #endif //_WIN32
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. //
  26. // Icon
  27. //
  28.  
  29. // Icon with lowest ID value placed first to ensure application icon
  30. // remains consistent on all systems.
  31. IDR_MAINFRAME           ICON    DISCARDABLE     "res\\ase.ico"
  32. IDR_ASETYPE             ICON    DISCARDABLE     "res\\aseDoc.ico"
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. //
  36. // Bitmap
  37. //
  38.  
  39. IDR_MAINFRAME           BITMAP  MOVEABLE PURE   "res\\Toolbar.bmp"
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42. //
  43. // Toolbar
  44. //
  45.  
  46. IDR_MAINFRAME TOOLBAR DISCARDABLE  16, 15
  47. BEGIN
  48.     BUTTON      ID_FILE_NEW
  49.     BUTTON      ID_FILE_OPEN
  50.     BUTTON      ID_FILE_SAVE
  51.     SEPARATOR
  52.     BUTTON      ID_WEIGHT0
  53.     BUTTON      ID_WEIGHT20
  54.     BUTTON      ID_WEIGHT40
  55.     BUTTON      ID_WEIGHTIMPASSABLE
  56.     BUTTON      ID_STARTINGPOINT
  57.     BUTTON      ID_ENDPOINT
  58.     SEPARATOR
  59.     BUTTON      ID_EXECUTEASTAR
  60.     BUTTON      ID_STEPASTAR
  61.     BUTTON      ID_RUNTOBREAKPOINT
  62.     SEPARATOR
  63.     BUTTON      ID_APP_ABOUT
  64. END
  65.  
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68. //
  69. // Menu
  70. //
  71.  
  72. IDR_MAINFRAME MENU PRELOAD DISCARDABLE 
  73. BEGIN
  74.     POPUP "&File"
  75.     BEGIN
  76.         MENUITEM "&New\tCtrl+N",                ID_FILE_NEW
  77.         MENUITEM "&Open...\tCtrl+O",            ID_FILE_OPEN
  78.         MENUITEM "&Save\tCtrl+S",               ID_FILE_SAVE
  79.         MENUITEM "Save &As...",                 ID_FILE_SAVE_AS
  80.         MENUITEM SEPARATOR
  81.         MENUITEM "Recent File",                 ID_FILE_MRU_FILE1, GRAYED
  82.         MENUITEM SEPARATOR
  83.         MENUITEM "E&xit",                       ID_APP_EXIT
  84.     END
  85.     POPUP "&Pathing"
  86.     BEGIN
  87.         MENUITEM "&Run A*\tF9",                 ID_EXECUTEASTAR
  88.         MENUITEM "&Step A*\tF10",               ID_STEPASTAR
  89.         MENUITEM "Run to &Breakpoint\tF5",      ID_RUNTOBREAKPOINT
  90.         MENUITEM SEPARATOR
  91.         POPUP "&Brush Weight"
  92.         BEGIN
  93.             MENUITEM "Weight-&0\tAlt+1",            ID_WEIGHT0
  94.             MENUITEM "Weight-&20\tAlt+2",           ID_WEIGHT20
  95.             MENUITEM "Weight-&40\tAlt+3",           ID_WEIGHT40
  96.             MENUITEM "&Impassable\tAlt+4",          ID_WEIGHTIMPASSABLE
  97.             MENUITEM SEPARATOR
  98.             MENUITEM "&Start Point\tAlt+5",         ID_STARTINGPOINT
  99.             MENUITEM "&End Point\tAlt+6",           ID_ENDPOINT
  100.         END
  101.         POPUP "&Debug Setup"
  102.         BEGIN
  103.             MENUITEM "&Breakpoint",                 ID_PATHING_BREAKPOINTS_POINT
  104.             , GRAYED
  105.             MENUITEM SEPARATOR
  106.             MENUITEM "&1  New Child Added",         ID_PATHING_BREAKPOINTS_NEWCHILD
  107.  
  108.             MENUITEM "&2  Open List Child",         ID_PATHING_BREAKPOINTS_OLCHILD
  109.  
  110.             MENUITEM "&3  Closed List Child",       ID_PATHING_BREAKPOINTS_CLCHILD
  111.  
  112.             MENUITEM "&4  Open List Child with Update", 
  113.                                                     ID_PATHING_BREAKPOINTS_OLUPDATE
  114.  
  115.             MENUITEM "&5  Closed List Child with Update", 
  116.                                                     ID_PATHING_BREAKPOINTS_CLUPDATE
  117.  
  118.         END
  119.         MENUITEM SEPARATOR
  120.         MENUITEM "&Allow Diagonal",             ID_PATHING_ALLOWDIAGONAL
  121.         MENUITEM "Relative &Costing",           ID_PATHING_RELATIVECOSTING
  122.         MENUITEM "Continuous &Update",          ID_PATHING_CONTINUOUSUPDATE
  123.         MENUITEM SEPARATOR
  124.         MENUITEM "Display &Goal Node\tCtrl+G",  ID_PATHING_DISPLAYGOALNODE
  125.     END
  126.     POPUP "&View"
  127.     BEGIN
  128.         MENUITEM "&Toolbar",                    ID_VIEW_TOOLBAR
  129.         MENUITEM "&Status Bar",                 ID_VIEW_STATUS_BAR
  130.         MENUITEM SEPARATOR
  131.         MENUITEM "&A* Route\tCtrl+D",           ID_VIEW_AROUTE
  132.     END
  133.     POPUP "&Help"
  134.     BEGIN
  135.         MENUITEM "&About A* Explorer...",       ID_APP_ABOUT
  136.     END
  137. END
  138.  
  139.  
  140. /////////////////////////////////////////////////////////////////////////////
  141. //
  142. // Accelerator
  143. //
  144.  
  145. IDR_MAINFRAME ACCELERATORS PRELOAD MOVEABLE PURE 
  146. BEGIN
  147.     "1",            ID_WEIGHT0,             VIRTKEY, ALT, NOINVERT
  148.     "2",            ID_WEIGHT20,            VIRTKEY, ALT, NOINVERT
  149.     "3",            ID_WEIGHT40,            VIRTKEY, ALT, NOINVERT
  150.     "4",            ID_WEIGHTIMPASSABLE,    VIRTKEY, ALT, NOINVERT
  151.     "5",            ID_STARTINGPOINT,       VIRTKEY, ALT, NOINVERT
  152.     "6",            ID_ENDPOINT,            VIRTKEY, ALT, NOINVERT
  153.     "C",            ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
  154.     "D",            ID_VIEW_AROUTE,         VIRTKEY, CONTROL, NOINVERT
  155.     "G",            ID_PATHING_DISPLAYGOALNODE, VIRTKEY, CONTROL, NOINVERT
  156.     "N",            ID_FILE_NEW,            VIRTKEY, CONTROL, NOINVERT
  157.     "O",            ID_FILE_OPEN,           VIRTKEY, CONTROL, NOINVERT
  158.     "S",            ID_FILE_SAVE,           VIRTKEY, CONTROL, NOINVERT
  159.     "V",            ID_EDIT_PASTE,          VIRTKEY, CONTROL, NOINVERT
  160.     VK_BACK,        ID_EDIT_UNDO,           VIRTKEY, ALT, NOINVERT
  161.     VK_DELETE,      ID_EDIT_CUT,            VIRTKEY, SHIFT, NOINVERT
  162.     VK_F10,         ID_STEPASTAR,           VIRTKEY, NOINVERT
  163.     VK_F5,          ID_RUNTOBREAKPOINT,     VIRTKEY, NOINVERT
  164.     VK_F6,          ID_NEXT_PANE,           VIRTKEY, NOINVERT
  165.     VK_F6,          ID_PREV_PANE,           VIRTKEY, SHIFT, NOINVERT
  166.     VK_F9,          ID_EXECUTEASTAR,        VIRTKEY, NOINVERT
  167.     VK_INSERT,      ID_EDIT_COPY,           VIRTKEY, CONTROL, NOINVERT
  168.     VK_INSERT,      ID_EDIT_PASTE,          VIRTKEY, SHIFT, NOINVERT
  169.     "X",            ID_EDIT_CUT,            VIRTKEY, CONTROL, NOINVERT
  170.     "Z",            ID_EDIT_UNDO,           VIRTKEY, CONTROL, NOINVERT
  171. END
  172.  
  173.  
  174. /////////////////////////////////////////////////////////////////////////////
  175. //
  176. // Dialog
  177. //
  178.  
  179. IDD_ABOUTBOX DIALOG DISCARDABLE  0, 0, 228, 102
  180. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  181. CAPTION "About A* Explorer"
  182. FONT 8, "Tahoma"
  183. BEGIN
  184.     ICON            IDR_MAINFRAME,IDC_STATIC,7,7,20,20
  185.     LTEXT           "A* Explorer 1.0",IDC_STATIC,40,10,119,8,SS_NOPREFIX
  186.     LTEXT           "Copyright ⌐ 2001, J.Matthews",IDC_STATIC,40,20,119,8
  187.     DEFPUSHBUTTON   "OK",IDOK,171,7,50,14,WS_GROUP
  188.     GROUPBOX        " About A* Explorer ",IDC_STATIC,7,35,214,60
  189.     CTEXT           "This application will let you discover the A* algorithm. It allows you to set breakpoints, break conditions, step the A*, see continual updates and many more features.",
  190.                     IDC_STATIC,14,46,200,27
  191.     CTEXT           "http://www.generation5.org/",IDC_STATIC,14,78,200,8
  192. END
  193.  
  194.  
  195. #ifndef _MAC
  196. /////////////////////////////////////////////////////////////////////////////
  197. //
  198. // Version
  199. //
  200.  
  201. VS_VERSION_INFO VERSIONINFO
  202.  FILEVERSION 1,0,0,1
  203.  PRODUCTVERSION 1,0,0,1
  204.  FILEFLAGSMASK 0x3fL
  205. #ifdef _DEBUG
  206.  FILEFLAGS 0x1L
  207. #else
  208.  FILEFLAGS 0x0L
  209. #endif
  210.  FILEOS 0x4L
  211.  FILETYPE 0x1L
  212.  FILESUBTYPE 0x0L
  213. BEGIN
  214.     BLOCK "StringFileInfo"
  215.     BEGIN
  216.         BLOCK "040904b0"
  217.         BEGIN
  218.             VALUE "Comments", "\0"
  219.             VALUE "CompanyName", "\0"
  220.             VALUE "FileDescription", "A* Explorer\0"
  221.             VALUE "FileVersion", "1, 0, 0, 1\0"
  222.             VALUE "InternalName", "ase\0"
  223.             VALUE "LegalCopyright", "Copyright ⌐ 2001\0"
  224.             VALUE "LegalTrademarks", "\0"
  225.             VALUE "OriginalFilename", "ase.exe\0"
  226.             VALUE "PrivateBuild", "\0"
  227.             VALUE "ProductName", "ase Application\0"
  228.             VALUE "ProductVersion", "1, 0, 0, 1\0"
  229.             VALUE "SpecialBuild", "\0"
  230.         END
  231.     END
  232.     BLOCK "VarFileInfo"
  233.     BEGIN
  234.         VALUE "Translation", 0x409, 1200
  235.     END
  236. END
  237.  
  238. #endif    // !_MAC
  239.  
  240.  
  241. /////////////////////////////////////////////////////////////////////////////
  242. //
  243. // DESIGNINFO
  244. //
  245.  
  246. #ifdef APSTUDIO_INVOKED
  247. GUIDELINES DESIGNINFO DISCARDABLE 
  248. BEGIN
  249.     IDD_ABOUTBOX, DIALOG
  250.     BEGIN
  251.         LEFTMARGIN, 7
  252.         RIGHTMARGIN, 221
  253.         TOPMARGIN, 7
  254.         BOTTOMMARGIN, 95
  255.     END
  256. END
  257. #endif    // APSTUDIO_INVOKED
  258.  
  259.  
  260. /////////////////////////////////////////////////////////////////////////////
  261. //
  262. // String Table
  263. //
  264.  
  265. STRINGTABLE PRELOAD DISCARDABLE 
  266. BEGIN
  267.     IDR_MAINFRAME           "A* Explorer\n\nAse\nA* Explorer Maps (*.ase)\n.ase\nAse.Document\nAse Document"
  268. END
  269.  
  270. STRINGTABLE PRELOAD DISCARDABLE 
  271. BEGIN
  272.     AFX_IDS_APP_TITLE       "A* Explorer"
  273.     AFX_IDS_IDLEMESSAGE     "Ready"
  274. END
  275.  
  276. STRINGTABLE DISCARDABLE 
  277. BEGIN
  278.     ID_INDICATOR_EXT        "EXT"
  279.     ID_INDICATOR_CAPS       "CAP"
  280.     ID_INDICATOR_NUM        "NUM"
  281.     ID_INDICATOR_SCRL       "SCRL"
  282.     ID_INDICATOR_OVR        "OVR"
  283.     ID_INDICATOR_REC        "REC"
  284. END
  285.  
  286. STRINGTABLE DISCARDABLE 
  287. BEGIN
  288.     ID_FILE_NEW             "Create a new document\nNew"
  289.     ID_FILE_OPEN            "Open an existing document\nOpen"
  290.     ID_FILE_CLOSE           "Close the active document\nClose"
  291.     ID_FILE_SAVE            "Save the active document\nSave"
  292.     ID_FILE_SAVE_AS         "Save the active document with a new name\nSave As"
  293. END
  294.  
  295. STRINGTABLE DISCARDABLE 
  296. BEGIN
  297.     ID_APP_ABOUT            "Display program information, version number and copyright\nAbout"
  298.     ID_APP_EXIT             "Quit the application; prompts to save documents\nExit"
  299. END
  300.  
  301. STRINGTABLE DISCARDABLE 
  302. BEGIN
  303.     ID_FILE_MRU_FILE1       "Open this document"
  304.     ID_FILE_MRU_FILE2       "Open this document"
  305.     ID_FILE_MRU_FILE3       "Open this document"
  306.     ID_FILE_MRU_FILE4       "Open this document"
  307.     ID_FILE_MRU_FILE5       "Open this document"
  308.     ID_FILE_MRU_FILE6       "Open this document"
  309.     ID_FILE_MRU_FILE7       "Open this document"
  310.     ID_FILE_MRU_FILE8       "Open this document"
  311.     ID_FILE_MRU_FILE9       "Open this document"
  312.     ID_FILE_MRU_FILE10      "Open this document"
  313.     ID_FILE_MRU_FILE11      "Open this document"
  314.     ID_FILE_MRU_FILE12      "Open this document"
  315.     ID_FILE_MRU_FILE13      "Open this document"
  316.     ID_FILE_MRU_FILE14      "Open this document"
  317.     ID_FILE_MRU_FILE15      "Open this document"
  318.     ID_FILE_MRU_FILE16      "Open this document"
  319. END
  320.  
  321. STRINGTABLE DISCARDABLE 
  322. BEGIN
  323.     ID_NEXT_PANE            "Switch to the next window pane\nNext Pane"
  324.     ID_PREV_PANE            "Switch back to the previous window pane\nPrevious Pane"
  325. END
  326.  
  327. STRINGTABLE DISCARDABLE 
  328. BEGIN
  329.     ID_WINDOW_SPLIT         "Split the active window into panes\nSplit"
  330. END
  331.  
  332. STRINGTABLE DISCARDABLE 
  333. BEGIN
  334.     ID_EDIT_CLEAR           "Erase the selection\nErase"
  335.     ID_EDIT_CLEAR_ALL       "Erase everything\nErase All"
  336.     ID_EDIT_COPY            "Copy the selection and put it on the Clipboard\nCopy"
  337.     ID_EDIT_CUT             "Cut the selection and put it on the Clipboard\nCut"
  338.     ID_EDIT_FIND            "Find the specified text\nFind"
  339.     ID_EDIT_PASTE           "Insert Clipboard contents\nPaste"
  340.     ID_EDIT_REPEAT          "Repeat the last action\nRepeat"
  341.     ID_EDIT_REPLACE         "Replace specific text with different text\nReplace"
  342.     ID_EDIT_SELECT_ALL      "Select the entire document\nSelect All"
  343.     ID_EDIT_UNDO            "Undo the last action\nUndo"
  344.     ID_EDIT_REDO            "Redo the previously undone action\nRedo"
  345. END
  346.  
  347. STRINGTABLE DISCARDABLE 
  348. BEGIN
  349.     ID_VIEW_TOOLBAR         "Show or hide the toolbar\nToggle ToolBar"
  350.     ID_VIEW_STATUS_BAR      "Show or hide the status bar\nToggle StatusBar"
  351.     ID_VIEW_AUTOARRANGE     "Arrange icons on a grid."
  352. END
  353.  
  354. STRINGTABLE DISCARDABLE 
  355. BEGIN
  356.     AFX_IDS_SCSIZE          "Change the window size"
  357.     AFX_IDS_SCMOVE          "Change the window position"
  358.     AFX_IDS_SCMINIMIZE      "Reduce the window to an icon"
  359.     AFX_IDS_SCMAXIMIZE      "Enlarge the window to full size"
  360.     AFX_IDS_SCNEXTWINDOW    "Switch to the next document window"
  361.     AFX_IDS_SCPREVWINDOW    "Switch to the previous document window"
  362.     AFX_IDS_SCCLOSE         "Close the active window and prompts to save the documents"
  363. END
  364.  
  365. STRINGTABLE DISCARDABLE 
  366. BEGIN
  367.     AFX_IDS_SCRESTORE       "Restore the window to normal size"
  368.     AFX_IDS_SCTASKLIST      "Activate Task List"
  369. END
  370.  
  371. STRINGTABLE DISCARDABLE 
  372. BEGIN
  373.     ID_VIEW_SMALLICON       "Display items by using small icons.\nSmall Icons"
  374.     ID_VIEW_LARGEICON       "Display items by using large icons.\nLarge Icons"
  375.     ID_VIEW_LIST            "Displays items in a list.\nList"
  376.     ID_VIEW_DETAILS         "Displays detailed information about each item in the window.\nDetails"
  377.     ID_VIEW_LINEUP          "Arranges icons in a grid."
  378.     ID_VIEW_BYNAME          "Sorts the icons alphabetically."
  379. END
  380.  
  381. STRINGTABLE DISCARDABLE 
  382. BEGIN
  383.     ID_WEIGHT0              "Sets weight to 0\nWeight-0"
  384.     ID_WEIGHT20             "Sets weight to 20\nWeight-20"
  385.     ID_WEIGHT40             "Sets weight to 40\nWeight-40"
  386.     ID_WEIGHTIMPASSABLE     "Sets an impassable object\nImpassable"
  387.     ID_STARTINGPOINT        "Sets the starting point\nStart point"
  388.     ID_ENDPOINT             "Sets the end point\nEnd point"
  389.     ID_EXECUTEASTAR         "Run A* algorithm\nRun A*"
  390. END
  391.  
  392. STRINGTABLE DISCARDABLE 
  393. BEGIN
  394.     ID_STEPASTAR            "Step the A* algorithm\nStep A*"
  395.     ID_EDIT_CLEARBOARD      "Clears the board content\nClear board"
  396.     ID_PATHING_ALLOWDIAGONAL 
  397.                             "Allow the A* to transverse squares that are diagonally adjacent\nAllow adjacent movement"
  398.     ID_PATHING_CONTINUOUSUPDATE 
  399.                             "Updates the path upon every mouse click\nContinuous Update"
  400.     ID_PATHING_DISPLAYGOALNODE 
  401.                             "Displays goal node in the A* node tree\nDisplay Goal Node"
  402.     ID_VIEW_AROUTE          "Toggles the A* route\nA* Route"
  403.     ID_RUNTOBREAKPOINT      "Runs the A* until the breakpoint is hit\nRun to Breakpoint"
  404.     ID_PATHING_BREAKPOINTS_POINT "Break when specified breakpoint hit"
  405.     ID_PATHING_BREAKPOINTS_OLUPDATE 
  406.                             "Break when an Open List child that updates its parent is added"
  407.     ID_PATHING_BREAKPOINTS_OLCHILD "Break when an Open List child is added"
  408.     ID_PATHING_BREAKPOINTS_CLUPDATE 
  409.                             "Break when a Closed List child that updates its parent is added"
  410. END
  411.  
  412. STRINGTABLE DISCARDABLE 
  413. BEGIN
  414.     ID_PATHING_BREAKPOINTS_CLCHILD "Break when a Closed List child is added"
  415.     ID_PATHING_BREAKPOINTS_NEWCHILD "Break when a new child is added"
  416. END
  417.  
  418. #endif    // English (U.S.) resources
  419. /////////////////////////////////////////////////////////////////////////////
  420.  
  421.  
  422. /////////////////////////////////////////////////////////////////////////////
  423. // English (U.K.) resources
  424.  
  425. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENG)
  426. #ifdef _WIN32
  427. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_UK
  428. #pragma code_page(1252)
  429. #endif //_WIN32
  430.  
  431. /////////////////////////////////////////////////////////////////////////////
  432. //
  433. // Bitmap
  434. //
  435.  
  436. IDB_NODEICONS           BITMAP  DISCARDABLE     "res\\bitmap1.bmp"
  437.  
  438. #ifdef APSTUDIO_INVOKED
  439. /////////////////////////////////////////////////////////////////////////////
  440. //
  441. // TEXTINCLUDE
  442. //
  443.  
  444. 1 TEXTINCLUDE DISCARDABLE 
  445. BEGIN
  446.     "resource.h\0"
  447. END
  448.  
  449. 2 TEXTINCLUDE DISCARDABLE 
  450. BEGIN
  451.     "#include ""afxres.h""\r\n"
  452.     "\0"
  453. END
  454.  
  455. 3 TEXTINCLUDE DISCARDABLE 
  456. BEGIN
  457.     "#define _AFX_NO_OLE_RESOURCES\r\n"
  458.     "#define _AFX_NO_TRACKER_RESOURCES\r\n"
  459.     "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
  460.     "\r\n"
  461.     "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n"
  462.     "#ifdef _WIN32\r\n"
  463.     "LANGUAGE 9, 1\r\n"
  464.     "#pragma code_page(1252)\r\n"
  465.     "#endif //_WIN32\r\n"
  466.     "#include ""res\\ase.rc2""  // non-Microsoft Visual C++ edited resources\r\n"
  467.     "#include ""afxres.rc""         // Standard components\r\n"
  468.     "#endif\r\n"
  469.     "\0"
  470. END
  471.  
  472. #endif    // APSTUDIO_INVOKED
  473.  
  474. #endif    // English (U.K.) resources
  475. /////////////////////////////////////////////////////////////////////////////
  476.  
  477.  
  478.  
  479. #ifndef APSTUDIO_INVOKED
  480. /////////////////////////////////////////////////////////////////////////////
  481. //
  482. // Generated from the TEXTINCLUDE 3 resource.
  483. //
  484. #define _AFX_NO_OLE_RESOURCES
  485. #define _AFX_NO_TRACKER_RESOURCES
  486. #define _AFX_NO_PROPERTY_RESOURCES
  487.  
  488. #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
  489. #ifdef _WIN32
  490. LANGUAGE 9, 1
  491. #pragma code_page(1252)
  492. #endif //_WIN32
  493. #include "res\ase.rc2"  // non-Microsoft Visual C++ edited resources
  494. #include "afxres.rc"         // Standard components
  495. #endif
  496.  
  497. /////////////////////////////////////////////////////////////////////////////
  498. #endif    // not APSTUDIO_INVOKED
  499.  
  500.